WorldClient Pro © 1999-2000 Alt-N Technologies. All Rights Reserved. |
|
Editing Templates |
|
In order to change certain settings or functionality within WorldClient Pro, you will need to change the HTML of the Views containing the controls that you wish to change.
You must exercise caution when editing the controls in the Templates; making sure that you do not delete Template Tags that may be necessary for the features to work properly. We recommend that, whenever possible, you hide the controls rather than delete them. Further, you should always make sure that the HTML editor that you are using will not alter the HTML code inadvertently. Some editors will automatically change code without you realizing it.
The following are two examples of controls that you might want to edit in WorldClient Pro's Template files:
Example
1:
How to change
the "From:"
drop-down list box to a text entry box on the Compose pages:
You will need to edit Compose.html.
Find the text:
<SELECT NAME="From"><$FromSelect$></SELECT>
Change it to:
<INPUT CLASS="Fixed" TYPE="Text" SIZE="40" NAME="From" VALUE="<$From$>">
Example
2:
How to disable
the user's ability to save sent mail:
You will need to edit Options-Prefs.html.
Find the text:
<INPUT
TYPE="RADIO" NAME="User:SaveSentMail" VALUE="Yes">Yes
<INPUT
TYPE="RADIO" NAME="User:SaveSentMail" VALUE="No">No
Change it to:
<INPUT TYPE="HIDDEN" NAME="SaveSentMail" VALUE="0">
Change the option SaveSentMail in the [Default:UserDefaults] section of the domains.ini file from Yes to No.
See Also: